home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1999 August / SGI Freeware 1999 August.iso / dist / fw_kdelibs.idb / usr / freeware / kde / include / htmldata.h.z / htmldata.h
Encoding:
C/C++ Source or Header  |  1999-01-26  |  1.4 KB  |  55 lines

  1. /* This file is part of the KDE libraries
  2.     Copyright (C) 1997 Martin Jones (mjones@kde.org)
  3.               (C) 1997 Torben Weis (weis@kde.org)
  4.  
  5.     This library is free software; you can redistribute it and/or
  6.     modify it under the terms of the GNU Library General Public
  7.     License as published by the Free Software Foundation; either
  8.     version 2 of the License, or (at your option) any later version.
  9.  
  10.     This library is distributed in the hope that it will be useful,
  11.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.     Library General Public License for more details.
  14.  
  15.     You should have received a copy of the GNU Library General Public License
  16.     along with this library; see the file COPYING.LIB.  If not, write to
  17.     the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  18.     Boston, MA 02111-1307, USA.
  19. */
  20.  
  21. #ifndef __HTMLDATA_H__
  22. #define __HTMLDATA_H__
  23.  
  24. #include <qcolor.h>
  25. #include <qcursor.h>
  26. #include <qstring.h>
  27. #include <kcharsets.h>
  28.  
  29. class HTMLSettings
  30. {
  31. public:
  32.     HTMLSettings();
  33.     HTMLSettings( const HTMLSettings & );
  34.  
  35.     const HTMLSettings &operator=( const HTMLSettings & );
  36.  
  37.     int     fontBaseSize;
  38.     QColor  fontBaseColor;
  39.     QString fontBaseFace;
  40.  
  41.     QString fixedFontFace;
  42.  
  43.     QColor  linkColor;
  44.     QColor  vLinkColor;
  45.  
  46.     QColor  bgColor;
  47.  
  48.     KCharset charset; 
  49.  
  50.     bool    underlineLinks;
  51. };
  52.  
  53. #endif
  54.  
  55.